home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000405_news@newsmaster….columbia.edu _Tue Dec 8 10:10:24 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA18316
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 8 Dec 1998 10:10:23 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA20110
  7.     for kermit.misc@watsun; Tue, 8 Dec 1998 10:10:23 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Changes 5A(190) -> 6.0(192) on VMS Alpha V7.1
  12. Date: 8 Dec 1998 15:10:20 GMT
  13. Organization: Columbia University
  14. Lines: 29
  15. Message-ID: <74jfgs$ab4$1@apakabar.cc.columbia.edu>
  16. References: <366D2E6A.29BAB524@CCAgroup.co.uk>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9612
  19.  
  20. In article <366D2E6A.29BAB524@CCAgroup.co.uk>,
  21. Chris Sharman  <Chris.Sharman@CCAgroup.co.uk> wrote:
  22. : I just tried out the 6.0 image, and it's not letting me provide
  23. : parameters like I used to:
  24. : $ mcr ckermit =param1 param2
  25. : my script ...
  26. : ...
  27. : $
  28. : used to work fine on 5A(190), but 6.0(192) tells me "?No files match -
  29. : =param1".  I put a redundant switch on (-m hayes), but the "m" was
  30. : then found as the first parameter by my script.  Is there a better way
  31. : to pass in values, or am I reading them wrong, or what ?
  32. It's a bug in 6.1.  It will be fixed in the next test version, to be
  33. announced soon.
  34.  
  35. But not that in any case, you need space both before and after the "="
  36. if you intend it to be the parameter separator.  Also (refer to earlier
  37. thread on this topic), this form, though still supported, is
  38. "deprecated" in favor of the getopt()-style "--", as in:
  39.  
  40.   kermit filename -x -x -x -- p1 p2 p3
  41.  
  42. where the -x's are Kermit options, and the pn's are paramaters for the
  43. script "filename". 
  44.  
  45. - Frank